home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d20
/
fddev202.arc
/
C.ARC
/
UNDIAL.H
< prev
Wrap
Text File
|
1991-10-01
|
2KB
|
38 lines
/*
** undial.h (FrontDoor)
**
** Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
**
** NODIAL.FD format for FrontDoor 2.00+
**
** Last revision: 91-10-02
**
** -------------------------------------------------------------------------
** This information is not necessarily final and is subject to change at any
** given time without further notice
** -------------------------------------------------------------------------
*/
#define MAXUNDIAL 200 /* Maximum number of undialable systems */
#define DIALTROUBLE 1 /* Got one failure */
#define DIALWORSE 2 /* Got two failures */
#define DIALNOMORE 3 /* Got three failures, undialable */
/*
** When FrontDoor reaches the maximum number of resend retries for a system
** during an event (session handshake failures, bad sends, etc.) it bumps
** the 'badness' counter one. Once it reaches three (i.e. FD has reached the
** resend limit in three separate events), the system is flagged as 'hard'
** undialable and FD will no longer attempt to call that system.
*/
typedef struct
{
word zone,net,node,point; /* Address of undialable system */
dword phone_crc; /* CRC-32 of raw telephone number */
word badness; /* How undialable the system is */
}
NODIAL, *NODIALPTR;
/* end of file "undial.h" */